void setup() {
  size(100, 100);
  smooth();
  fill(0);
  noLoop();
}

void draw() {
  ellipse(50, 50, 66, 66);
}